home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-05 | 784 b | 25 lines | [TEXT/KAHL] |
- //____________________________________________________________
- // WindRecordAccess.h
- //
- // Copyright © Dan Parks Sydow, 1995
- // From the book:
- // "Graphics and Sound Programming Techniques for the Mac",
- // M&T Books, 1995
-
-
- //____________________________________________________________
-
- #include <Movies.h>
-
- void SetWindowType( WindowPtr, short );
- void SetWindowFileReference( WindowPtr, short );
- void SetWindowMovieResourceID( WindowPtr, short );
- void SetWindowMovie( WindowPtr, Movie );
- void SetWindowController( WindowPtr, MovieController );
-
- short GetWindowType( WindowPtr );
- short GetWindowFileReference( WindowPtr );
- short GetWindowMovieResourceID( WindowPtr );
- Movie GetWindowMovie( WindowPtr );
- MovieController GetWindowController( WindowPtr );
-